home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / prog / gnu-c / gccfindhit / makefile < prev    next >
Makefile  |  1995-05-22  |  362b  |  12 lines

  1. CC = gcc
  2. #uncomment the following line if the host is a little endian machine
  3. #(the Amiga is *not* little endian :-)
  4. #ENDIANNESS = -DLITTLE_ENDIAN
  5.  
  6. #Comment the following line if your compiler doesn't like it
  7. #or if you absolutely want ixemul
  8. AFLAGS = -noixemul
  9.  
  10. GccFindHit: GccFindHit.c defs.h
  11.     $(CC) $(AFLAGS) -Wall -O $(ENDIANNESS) GccFindHit.c -o GccFindHit
  12.